home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / ab20_archive / archivers / unsit-1.5c2.lzh / unsit1.5c.amiga / src / makefile < prev    next >
Makefile  |  1991-09-08  |  325b  |  15 lines

  1. # Makefile for Unsit v1.5
  2. #
  3. # Compiled with Manx 5.0e1
  4. # Amiga version, optimizations, small code/small data
  5. CFLAGS = -DAMIGA -so
  6.  
  7. SOURCES = unsit.c updcrc.c getopt.c pio.c
  8. OBJECTS = unsit.o updcrc.o getopt.o pio.o
  9.  
  10. unsit: $(OBJECTS) unstuffit.h pio.h
  11.      ln -o unsit $(OBJECTS) -lc
  12.  
  13. .c.o: $(SOURCES)
  14.      cc $(CFLAGS) $*.c
  15.